From 1787e1a4b7eaae13a6a2dceb09b2f9da5d918bf0 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Tue, 9 Aug 2005 10:47:41 +0000 Subject: [PATCH] When building in separate object directory entry.o fails building because entry.S includes syscall_table.S but it's in the wrong directory. This simply adds the obj-dir to the include search path. Signed-off-by: Chris Wright --- linux-2.6-xen-sparse/arch/xen/i386/kernel/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-2.6-xen-sparse/arch/xen/i386/kernel/Makefile b/linux-2.6-xen-sparse/arch/xen/i386/kernel/Makefile index afaeeda479..da948cabc9 100644 --- a/linux-2.6-xen-sparse/arch/xen/i386/kernel/Makefile +++ b/linux-2.6-xen-sparse/arch/xen/i386/kernel/Makefile @@ -92,6 +92,7 @@ $(patsubst %.o,$(obj)/%.c,$(c-obj-y) $(c-obj-m) $(c-link)) $(patsubst %.o,$(obj) $(obj)/vsyscall-int80.S: $(obj)/vsyscall-sigreturn.S +EXTRA_AFLAGS += -I$(obj) $(obj)/entry.o: $(src)/entry.S $(src)/syscall_table.S obj-y += $(c-obj-y) $(s-obj-y) -- 2.30.2